Component org.nuxeo.ecm.core.storage.mongodb.configuration
In bundle org.nuxeo.ecm.core.storage.mongodb
Resolution Order
162
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.core.storage.mongodb.configuration--configuration
- org.nuxeo.ecm.core.storage.mongodb.configuration--configuration1
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.storage.mongodb.configuration">
<extension target="org.nuxeo.runtime.ConfigurationService" point="configuration">
<documentation>
Property to disable the fact that on MongoDB a LIKE match anchors its search
(like in SQL databases), i.e., absent wildcards, it does not match in the middle of a string.
When true, does not match in the middle of a string.
When false, works as if there was a % on each side of the LIKE expression.
@since 10.3
</documentation>
<!-- default is true for 10.3 and later -->
<property name="nuxeo.mongodb.like.anchored">true</property>
</extension>
<extension target="org.nuxeo.runtime.ConfigurationService" point="configuration">
<documentation>
Property to disable the cursor timeout on the GC markReferencedBlobs query.
@since 2021.14
</documentation>
<property name="nuxeo.mongodb.gc.noCursorTimeout">false</property>
</extension>
</component>